From: Richard M. Stallman Date: Sat, 3 Jan 2004 22:38:03 +0000 (+0000) Subject: (compile-internal): Use point, not point-min, for set-window-point. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~24583 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=0c47484bbfc64ced8251154e8dfb5dd787934b99;p=emacs.git (compile-internal): Use point, not point-min, for set-window-point. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 6d76fe3384a..de050411411 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -754,7 +754,7 @@ Returns the compilation buffer created." compilation-directory-stack (list default-directory)) (set-window-start outwin (point-min)) (or (eq outwin (selected-window)) - (set-window-point outwin (point-min))) + (set-window-point outwin (point))) ;; The setup function is called before compilation-set-window-height ;; so it can set the compilation-window-height buffer locally. (if compilation-process-setup-function